go/build.Context.isDir (method)

13 uses

	go/build (current package)
		build.go#L143: func (ctxt *Context) isDir(path string) bool {
		build.go#L273: 		if ctxt.isDir(dir) {
		build.go#L279: 		if ctxt.isDir(dir) {
		build.go#L644: 					if dir := ctxt.joinPath(ctxt.GOROOT, "src", sub); ctxt.isDir(dir) {
		build.go#L650: 					if dir := ctxt.joinPath(earlyRoot, "src", sub); ctxt.isDir(dir) {
		build.go#L695: 					if ctxt.isDir(vendor) {
		build.go#L697: 						if ctxt.isDir(dir) && hasGoFiles(ctxt, dir) {
		build.go#L738: 					isDir := ctxt.isDir(dir)
		build.go#L761: 			isDir := ctxt.isDir(dir)
		build.go#L777: 				isDir := ctxt.isDir(dir)
		build.go#L837: 	if IsLocalImport(path) && !ctxt.isDir(p.Dir) {
		build.go#L891: 			if ctxt.isDir(ctxt.joinPath(p.Dir, d.Name())) {
		build.go#L1190: 	if dir := ctxt.joinPath(ctxt.GOROOT, "src", path); ctxt.isDir(dir) {